type net/http.http2StreamError

28 uses

	net/http (current package)
		h2_bundle.go#L1230: type http2StreamError struct {
		h2_bundle.go#L1241: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
		h2_bundle.go#L1242: 	return http2StreamError{StreamID: id, Code: code}
		h2_bundle.go#L1245: func (e http2StreamError) Error() string {
		h2_bundle.go#L1881: 	if _, ok := err.(http2StreamError); ok {
		h2_bundle.go#L3006: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
		h2_bundle.go#L3013: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
		h2_bundle.go#L4757: 			if se, ok := wr.write.(http2StreamError); ok {
		h2_bundle.go#L5005: 		_, isReset := wr.write.(http2StreamError)
		h2_bundle.go#L5055: 			case http2StreamError, http2handlerPanicRST, http2writeWindowUpdate:
		h2_bundle.go#L5139: 		case http2StreamError:
		h2_bundle.go#L5259: func (sc *http2serverConn) resetStream(se http2StreamError) {
		h2_bundle.go#L5302: 	case http2StreamError:
		h2_bundle.go#L5479: 	if e, ok := err.(http2StreamError); ok {
		h2_bundle.go#L5733: 	st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2StreamError{
		h2_bundle.go#L7110: 	case http2StreamError:
		h2_bundle.go#L7735: 	if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L8655: 			if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L9346: 		if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L9407: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9436: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9745: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9753: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9762: 			rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L10382: func (se http2StreamError) writeFrame(ctx http2writeContext) error {
		h2_bundle.go#L10386: func (se http2StreamError) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
		h2_bundle.go#L10688: 		if se, ok := wr.write.(http2StreamError); ok {
		h2_error.go#L14: func (e http2StreamError) As(target any) bool {